home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / var / lib / dpkg / info / bc.postinst < prev    next >
Text File  |  2007-12-05  |  628b  |  34 lines

  1. #!/bin/sh
  2. #
  3. # This is the postinst script for the Debian GNU/Linux bc package
  4. #
  5. # Written by Dirk Eddelbuettel <edd@debian.org>   
  6. # Previous versions written by Bill Mitchell, Austin Donnelly and James Troup
  7.  
  8. set -e
  9.  
  10. # Automatically added by dh_installmenu
  11. if [ "$1" = "configure" ] && [ -x "`which update-menus 2>/dev/null`" ]; then
  12.     update-menus
  13. fi
  14. # End automatically added section
  15.  
  16.  
  17. case "$1" in
  18.     configure)
  19. #     if [ -x /usr/bin/update-menus ]
  20. #     then
  21. #         update-menus 
  22. #     fi
  23.         ;;
  24.     abort-upgrade|abort-remove|abort-deconfigure)
  25.     ;;
  26.     *)
  27.     echo "postinst called with unknown argument \`$1'" >&2
  28.     ;;
  29. esac
  30.  
  31.  
  32.  
  33.  
  34.